From: Andre Przywara Date: Thu, 5 Dec 2013 10:08:10 +0000 (+0100) Subject: arm: add a function to invoke the PSCI handler X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~5811 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/%22bookmarks://%22/%22http:/www.example.com/cgi/%22https:/%22bookmarks:/%22?a=commitdiff_plain;h=3702d92fe4540f52032281c88182e48962c08f57;p=xen.git arm: add a function to invoke the PSCI handler The PSCI handler is invoked via a secure monitor call with the arguments defined in registers. Copy the function from the Linux code and adjust it to work on both ARM32 and ARM64. Signed-off-by: Andre Przywara Acked-by: Ian Campbell --- diff --git a/xen/arch/arm/psci.c b/xen/arch/arm/psci.c index efb514e4bc..25a869769d 100644 --- a/xen/arch/arm/psci.c +++ b/xen/arch/arm/psci.c @@ -25,8 +25,38 @@ bool_t psci_available; +#ifdef CONFIG_ARM_32 +#define REG_PREFIX "r" +#else +#define REG_PREFIX "x" +#endif + +static noinline int __invoke_psci_fn_smc(register_t function_id, + register_t arg0, + register_t arg1, + register_t arg2) +{ + asm volatile( + __asmeq("%0", REG_PREFIX"0") + __asmeq("%1", REG_PREFIX"1") + __asmeq("%2", REG_PREFIX"2") + __asmeq("%3", REG_PREFIX"3") + "smc #0" + : "+r" (function_id) + : "r" (arg0), "r" (arg1), "r" (arg2)); + + return function_id; +} + +#undef REG_PREFIX + static uint32_t psci_cpu_on_nr; +int call_psci_cpu_on(int cpu) +{ + return __invoke_psci_fn_smc(psci_cpu_on_nr, cpu, __pa(init_secondary), 0); +} + int __init psci_init(void) { const struct dt_device_node *psci; diff --git a/xen/include/asm-arm/psci.h b/xen/include/asm-arm/psci.h index 36ce87da41..189964bfad 100644 --- a/xen/include/asm-arm/psci.h +++ b/xen/include/asm-arm/psci.h @@ -10,6 +10,7 @@ extern bool_t psci_available; int psci_init(void); +int call_psci_cpu_on(int cpu); /* functions to handle guest PSCI requests */ int do_psci_cpu_on(uint32_t vcpuid, register_t entry_point);